home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 4
/
CDPD_IV.bin
/
e
/
mailinglists
/
amigae.0793july.archive
/
000063_crash!genie.ge….com!g.beasley2_Sat, 24 Jul 93 07:44:09 PST.msg
< prev
next >
Wrap
Internet Message Format
|
1994-05-26
|
2KB
Received: by bkhouse.cts.com (V1.16/Amiga)
id AA00000; Sat, 24 Jul 93 07:44:09 PST
Received: from vmbb.cts.com by crash.cts.com with smtp
(Smail3.1.28.1 #15) id m0oJk5X-0000W9C; Sat, 24 Jul 93 06:56 PDT
Received: from relay2.geis.com by vmbb.cts.com with smtp
(Smail3.1.28.1 #9) id m0oJk5S-0002FhC; Sat, 24 Jul 93 06:56 PDT
Received: by relay2.geis.com
(1.37.109.4/15.6) id AA08853; Sat, 24 Jul 93 14:56:56 +0100
Message-Id: <9307241356.AA08853@relay2.geis.com>
Date: Sat, 24 Jul 93 14:39:00 BST
X-Genie-Id: 1409962
X-Genie-From: G.BEASLEY2
From: g.beasley2@genie.geis.com
To: amigae@bkhouse.cts.com
Subject: Listviews and windows
Reply: Item #1956647 from WOUTER@MARS.LET.UVA.NL@INET#
Thanks for the help Wouter. You are exactly write about the
listviews. Thanks.
As for the problem with multiplie open windows, I had been using the
second methode (sharing a single message port). I followed step for
step the RKM guides rules on how to do it (I am translating a program
that I wrote in C to E so I have done this before in other
languages), but I could not get it to work in E. The program shared
the port fine and I got all of the proper information from intuition,
ubtil I close a window, then my computer locks up. I know about
CloseSafely. Here is my version of it for E:
PROC closeSafe( win )
DEF msg:PTR TO intuimessage,
wnd:PTR TO window
wnd:=win
Forbid( )
WHILE msg:=Gt_GetIMsg( wnd.userport )
Gt_ReplyIMsg( msg )
ENDWHILE
Permit( )
CloseWindow( wnd )
ENDPROC
The first methode that you described (using Wait() with multiple
masks) works great and I will continue to use that methode. Thanks
for the info, its been a great help.
BEANMAN...